Skip to main content
GET
/
api
/
v1
/
context
/
add-async
/
{id}
/
status
Get status of a context add job
curl --request GET \
  --url https://platform-backend.getalchemystai.com/api/v1/context/add-async/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobId": "<string>",
  "status": "<string>",
  "result": {},
  "attemptsMade": 123,
  "failedReason": "<string>",
  "finishedOn": 123,
  "processedOn": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Job ID to check status for

Response

Job status and result

success
boolean
jobId
string
status
string
result
object
attemptsMade
number
failedReason
string
finishedOn
number
processedOn
number